----------------- MATLAB FILES README -----------------
This zip folder contains seven .p files, which are MATLAB P-Code files. The P-Code is functionally identical to their ".m" counterparts in MATLAB and callable like regular MATLAB functions.

For example, the commands below compute the eigenvalue for Application Br at x = [0;0;0;0;0].
x = zeros(5,1);
y = Br(x);

You can also call it in a loop as follows.

x = ones(5,100000);
for i = 1:100000
y(i) = Br(x(:,i));
end

The cross-sections may be supplied in row-format or column-format, but need to be 1x5 or 5x1.